home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / saf / sax / AssociatedDocumentHandler.class (.txt) next >
Encoding:
Java Class File  |  2000-06-30  |  2.4 KB  |  73 lines

  1. package com.extensibility.saf.sax;
  2.  
  3. import com.extensibility.saf.Association;
  4. import com.extensibility.saf.SchemaAdjunct;
  5. import org.xml.sax.AttributeList;
  6. import org.xml.sax.DocumentHandler;
  7. import org.xml.sax.Locator;
  8. import org.xml.sax.SAXException;
  9.  
  10. public class AssociatedDocumentHandler implements DocumentHandler {
  11.    private SchemaAdjunct associations;
  12.    private DocumentHandler sourceHandler;
  13.    private String currentPath;
  14.  
  15.    public AssociatedDocumentHandler(SchemaAdjunct var1, DocumentHandler var2) {
  16.       this.sourceHandler = var2;
  17.       this.associations = var1;
  18.       this.currentPath = "";
  19.    }
  20.  
  21.    protected SchemaAdjunct getSchemaAdjunct() {
  22.       return this.associations;
  23.    }
  24.  
  25.    protected String getCurrentPath() {
  26.       return this.currentPath;
  27.    }
  28.  
  29.    protected DocumentHandler getSourceHandler() {
  30.       return this.sourceHandler;
  31.    }
  32.  
  33.    public void setDocumentLocator(Locator var1) {
  34.       this.sourceHandler.setDocumentLocator(var1);
  35.    }
  36.  
  37.    public void startDocument() throws SAXException {
  38.       this.sourceHandler.startDocument();
  39.    }
  40.  
  41.    public void endDocument() throws SAXException {
  42.       this.sourceHandler.endDocument();
  43.    }
  44.  
  45.    public void startAssociatedElement(String var1, AttributeList var2, Association[] var3) throws SAXException {
  46.       this.sourceHandler.startElement(var1, var2);
  47.    }
  48.  
  49.    public void startElement(String var1, AttributeList var2) throws SAXException {
  50.       this.currentPath = String.valueOf(String.valueOf(this.currentPath).concat(String.valueOf("/"))).concat(String.valueOf(var1));
  51.       SchemaAdjunct var3 = this.getSchemaAdjunct();
  52.       Association[] var4 = var3.getAssociations(this.currentPath);
  53.       this.startAssociatedElement(var1, var2, var4);
  54.    }
  55.  
  56.    public void endElement(String var1) throws SAXException {
  57.       this.sourceHandler.endElement(var1);
  58.       this.currentPath = this.currentPath.substring(0, this.currentPath.lastIndexOf("/"));
  59.    }
  60.  
  61.    public void characters(char[] var1, int var2, int var3) throws SAXException {
  62.       this.sourceHandler.characters(var1, var2, var3);
  63.    }
  64.  
  65.    public void ignorableWhitespace(char[] var1, int var2, int var3) throws SAXException {
  66.       this.sourceHandler.ignorableWhitespace(var1, var2, var3);
  67.    }
  68.  
  69.    public void processingInstruction(String var1, String var2) throws SAXException {
  70.       this.sourceHandler.processingInstruction(var1, var2);
  71.    }
  72. }
  73.